FullWriteKeyValuesCacheRepo

open class FullWriteKeyValuesCacheRepo<Key, Value>(    parentRepo: WriteKeyValuesRepo<Key, Value>,     kvCache: FullKVCache<Key, List<Value>>,     scope: CoroutineScope = CoroutineScope(Dispatchers.Default)) : WriteKeyValuesRepo<Key, Value> , FullCacheRepo

Constructors

Link copied to clipboard
fun <Key, Value> FullWriteKeyValuesCacheRepo(    parentRepo: WriteKeyValuesRepo<Key, Value>,     kvCache: FullKVCache<Key, List<Value>>,     scope: CoroutineScope = CoroutineScope(Dispatchers.Default))

Functions

Link copied to clipboard
open suspend override fun add(toAdd: Map<Key, List<Value>>)
Link copied to clipboard
open suspend override fun clear(k: Key)
Link copied to clipboard
open suspend override fun clearWithValue(v: Value)
Link copied to clipboard
open suspend override fun remove(toRemove: Map<Key, List<Value>>)
Link copied to clipboard
open suspend override fun set(toSet: Map<Key, List<Value>>)

Properties

Link copied to clipboard
open override val onDataCleared: Flow<Key>
Link copied to clipboard
open override val onNewValue: Flow<Pair<Key, Value>>
Link copied to clipboard
open override val onValueRemoved: Flow<Pair<Key, Value>>

Inheritors

FullKeyValuesCacheRepo
Link copied to clipboard